Accord Software, Inc.

tutorial06/circular.h




/*
 * Accord Software, Inc.
 *
 * Tutorial 06
 */

#define CIRC_PROGNUM    0x20000000 + 6
#define CIRC_VERSNUM    1

#define FORWARD         1
#define BACKWARD        2

struct list1 {
	int number;
	struct list1 *next;
};

struct list2 {
	int number;
	struct list2 *next;
	struct list2 *prev;
};

[ Home | Tutorials | main.c | circular.c ]
E-Mail:webmaster@accord.com
[P-067] Updated March 14, 1996
Copyright © 1993-1996 Accord Software, Inc. All rights reserved.